Skip to content

refactor(test-runner-module-mocking): migrate tests to node:test#3089

Merged
bashmish merged 1 commit into
masterfrom
migrate/test-runner-module-mocking-node-test
Jun 16, 2026
Merged

refactor(test-runner-module-mocking): migrate tests to node:test#3089
bashmish merged 1 commit into
masterfrom
migrate/test-runner-module-mocking-node-test

Conversation

@bennypowers

Copy link
Copy Markdown
Member

Summary

  • Migrate @web/test-runner-module-mocking tests from mocha/chai to node:test + node:assert/strict
  • 1 TS file, imports from dist/, needs Chrome
  • fileURLToPath(new URL('.', import.meta.url)) simplified to import.meta.dirname
  • --experimental-strip-types for CI compat

Test plan

  • 5/5 tests pass on Node 22.22.3 with Chrome + NODE_OPTIONS='--no-experimental-strip-types'
  • ESLint clean
  • Prettier clean
  • Code review clean

Replace mocha globals and chai assertions with node:test and
node:assert/strict.

- `import { expect } from 'chai'` -> `import assert from 'node:assert/strict'`
- `../src/moduleMockingPlugin.js` -> `../dist/moduleMockingPlugin.js`
- `fileURLToPath(new URL('.', import.meta.url))` -> `import.meta.dirname`
- `this.timeout(20000)` -> `{ timeout: 20000 }` on describe
- `expect(x).to.equal(y)` -> `assert.equal(x, y)`
- `expect(x).to.match(re)` -> `assert.match(x, re)`
- Add `--experimental-strip-types` for CI compat

Assisted-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@changeset-bot

changeset-bot Bot commented Jun 1, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 633fab0

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@bennypowers bennypowers mentioned this pull request Jun 3, 2026
@bashmish bashmish merged commit 16bce09 into master Jun 16, 2026
6 of 10 checks passed
@bashmish bashmish deleted the migrate/test-runner-module-mocking-node-test branch June 16, 2026 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants